.
├── .expo-shared
│   └── assets.json
├── .git
│   ├── hooks
│   │   ├── applypatch-msg.sample
│   │   ├── commit-msg.sample
│   │   ├── fsmonitor-watchman.sample
│   │   ├── post-update.sample
│   │   ├── pre-applypatch.sample
│   │   ├── pre-commit.sample
│   │   ├── pre-merge-commit.sample
│   │   ├── pre-push.sample
│   │   ├── pre-rebase.sample
│   │   ├── pre-receive.sample
│   │   ├── prepare-commit-msg.sample
│   │   └── update.sample
│   ├── info
│   │   └── exclude
│   ├── logs
│   │   ├── refs
│   │   │   ├── heads
│   │   │   │   └── master
│   │   │   └── remotes
│   │   │       └── origin
│   │   │           └── HEAD
│   │   └── HEAD
│   ├── objects
│   │   ├── info
│   │   └── pack
│   │       ├── pack-5810edf1d9e9f026b95efe3c9cb7bfef5a9463b8.idx
│   │       └── pack-5810edf1d9e9f026b95efe3c9cb7bfef5a9463b8.pack
│   ├── refs
│   │   ├── heads
│   │   │   └── master
│   │   ├── remotes
│   │   │   └── origin
│   │   │       └── HEAD
│   │   └── tags
│   ├── config
│   ├── description
│   ├── HEAD
│   ├── index
│   └── packed-refs
├── .github
│   └── ISSUE_TEMPLATE
│       ├── bug_report.md
│       └── feature_request.md
├── .idea
│   ├── .gitignore
│   ├── misc.xml
│   ├── modules.xml
│   ├── pem-app-master.iml
│   ├── pem-app.iml
│   ├── prettier.xml
│   └── vcs.xml
├── .ionide
│   └── symbolCache.db
├── assets
│   ├── fonts
│   │   ├── Helvetica.ttf
│   │   ├── OpenSans-Bold.ttf
│   │   └── OpenSans-Regular.ttf
│   ├── icons
│   │   ├── acetaminophen-icon-96.png
│   │   ├── appendix-icon-512.png
│   │   ├── crutch-80.png
│   │   ├── emergent-rashes-icon-64.png
│   │   ├── fever-28-64.png
│   │   ├── fever-60-64.png
│   │   ├── fever-icon-64.png
│   │   ├── foreign-ingestion-icon-80.png
│   │   ├── foreign-ingestion-icon-color-80.png
│   │   ├── foreign-ingestion-icon-white-96.png
│   │   ├── head-icon-100.png
│   │   ├── image-placeholder-icon-128.png
│   │   ├── image-placeholder-icon-256.png
│   │   ├── image-placeholder-icon-512.png
│   │   ├── image-placeholder-icon-64.png
│   │   ├── image-placeholder-icon-svg.svg
│   │   ├── index.js
│   │   ├── medical-icon-80.png
│   │   ├── medical-icon-color-80.png
│   │   ├── medical-icon-white-80.png
│   │   ├── medical-icon-white-filled-96.png
│   │   ├── pneumonia-icon-100.png
│   │   ├── spine-icon-96.png
│   │   ├── surgical-icon-80.png
│   │   ├── surgical-icon-color-80.png
│   │   ├── surgical-icon-white-80.png
│   │   ├── toxicology-icon-80.png
│   │   ├── toxicology-icon-color-80.png
│   │   ├── toxicology-icon-white-80.png
│   │   ├── trauma-icon-80.png
│   │   ├── trauma-icon-color-80.png
│   │   └── trauma-icon-white-80.png
│   ├── boy-face.svg
│   ├── boy-hair.svg
│   ├── girl-face.svg
│   ├── girl-hair.svg
│   ├── icon.png
│   ├── icon.xcf
│   ├── left-snake.svg
│   ├── logo-norim.svg
│   ├── logo.png
│   ├── logo.svg
│   ├── logo.xcf
│   ├── right-snake.svg
│   ├── rim.svg
│   ├── splash.png
│   ├── splash.xcf
│   ├── staff.svg
│   └── wings.svg
├── backend
│   └── firebase.js
├── components
│   ├── img
│   │   ├── colors0.jpeg
│   │   ├── colors3.jpeg
│   │   └── default-profile-pic.jpg
│   ├── addCmeScreen.js
│   ├── AdminSubCatGrid.js
│   ├── AlphabeticalDivider.js
│   ├── CatContentLayout.js
│   ├── CategoryGridTile.js
│   ├── ChatList.js
│   ├── CustomAccordionList.js
│   ├── CustomHeaderButton.js
│   ├── DrawerComponent.js
│   ├── FormButton.js
│   ├── FormInput.js
│   ├── Highlight.js
│   ├── Loading.js
│   ├── RadioModal.js
│   ├── SearchGridTile.js
│   └── styles.js
├── constants
│   └── Colors.js
├── data
│   ├── categoriesData.js
│   └── firebase_data_entry.js
├── functions
│   ├── lib
│   │   ├── index.js
│   │   └── index.js.map
│   ├── src
│   │   └── index.ts
│   ├── .eslintrc.json
│   ├── .gitignore
│   ├── index.js
│   ├── package-lock.json
│   ├── package.json
│   └── tsconfig.json
├── models
│   ├── catContent.js
│   ├── category.js
│   └── cmes.js
├── navigation
│   └── PemNavigation.js
├── screens
│   ├── AdminScreens
│   │   ├── AdminCategoriesScreen.js
│   │   ├── AdminSubCategoriesScreen.js
│   │   └── EditCatContentScreen.js
│   ├── ChatScreens
│   │   ├── AddPrivateChatScreen.js
│   │   ├── AddRoomScreen.js
│   │   ├── ChatDetailScreen.js
│   │   ├── ChatTabScreen.js
│   │   └── RoomScreen.js
│   ├── ProfileScreens
│   │   ├── CalendarScreen.js
│   │   ├── EditProfileScreen.js
│   │   ├── ProfileScreen.js
│   │   └── UserProfileScreen.js
│   ├── CatContentScreen.js
│   ├── CategoriesScreen.js
│   ├── FavoritesScreen.js
│   ├── LoginScreen.js
│   ├── newCmeScreen.js
│   ├── ResetPasswordScreen.js
│   ├── SearchScreen.js
│   ├── SignOut.js
│   ├── SignUpScreen.js
│   ├── SubCategoriesScreen.js
│   └── SubCatListItem.js
├── store
│   ├── actions
│   │   ├── catContent.js
│   │   └── categories.js
│   └── reducers
│       ├── catContent.js
│       └── categories.js
├── utilities
│   └── UserPermission.js
├── .eslintrc.js
├── .firebaserc
├── .gitignore
├── algoliaConfig.js.example
├── App.js
├── app.json
├── babel.config.js
├── CODE_OF_CONDUCT.md
├── debug.log
├── EME-trial_journal.txt
├── firebase.json
├── firebaseConfig.js.example
├── jsconfig.json
├── LICENSE.md
├── output.json
├── package-lock.json
├── package.json
├── README.md
└── tsconfig.json